2016-02-08 Problem Solving►UVa UVa 10921 - Find the Telephone Contents 1. Problem2. Code Problem題目網址一個一個對照過去而已… CodeUVa 10921UVa 10921 - Find the Telephone1234567891011121314151617181920#include<cstdio>int main(){ char map[27] = "22233344455566677778889999"; char c; while ((c = getchar()) != EOF) { if (c == '\n') putchar('\n'); else if (c == '-' || c == '1' || c == '0') putchar(c); else putchar(map[c - 'A']); } return 0;} Newer UVa 264 - Count on Cantor Older UVa 解題近況